home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
lib
/
c
/
gate
/
RCS
/
gateInt.h,v
< prev
Wrap
Text File
|
1992-06-05
|
1KB
|
58 lines
head 1.1;
branch ;
access ;
symbols ;
locks ; strict;
comment @ * @;
1.1
date 92.06.05.12.49.19; author jhh; state Exp;
branches ;
next ;
desc
@@
1.1
log
@Initial revision
@
text
@/*
* gateInt.h --
*
* Declarations used internally by the "Gate_" procedures.
*
* Copyright 1992 Regents of the University of California
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*
* $Header: /user6/voelker/src/hosttest/RCS/gateInt.h,v 1.1 92/03/26 19:47:29 voelker Exp Locker: voelker $ SPRITE (Berkeley)
*/
#ifndef _GATEINT
#define _GATEINT
#ifndef _STDIO
#include <stdio.h>
#endif
/*
* Information about the current database file:
*/
extern FILE *gateFile; /* Non-zero? Then it points to an open file. */
extern char *gateFileName; /* Name of database file to use. */
#endif _HOSTINT
@